home *** CD-ROM | disk | FTP | other *** search
/ Adventures with Oslo: Tools & Gadgets / Adventures with Oslo - Tools and Gadgets.ISO / mac / Ad / Mod02 / Shop / Bank3 / 00106.ls < prev    next >
Encoding:
Text File  |  1994-09-23  |  263 b   |  14 lines

  1. on mouseUp
  2.   global gBackPack
  3.   puppetSound("Frrp.S")
  4.   updateStage()
  5.   set index to getOne(gBackPack, #noLoan)
  6.   if index <> 0 then
  7.     deleteAt(gBackPack, index)
  8.   end if
  9.   if getOne(gBackPack, #loan) = 0 then
  10.     add(gBackPack, #loan)
  11.   end if
  12.   go("yes")
  13. end
  14.